home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’95 / Spy / Offscreen.h < prev    next >
Text File  |  1995-09-10  |  335b  |  17 lines

  1. /*
  2.  *        Offscreen.h
  3.  */
  4. #include <QDOffscreen.h>
  5.  
  6.  
  7. typedef struct WindowOffscreen {
  8.     CGrafPtr        windowPort;
  9.     GDHandle        windowDevice;
  10.     GWorldPtr        offscreenWorld;
  11.     short            rightSlop;
  12. } WindowOffscreen;
  13.  
  14.  
  15. extern WindowOffscreen    *DrawOffscreen(WindowPtr theWindow, short    rightSlop);
  16. extern void        DrawOnscreen(WindowOffscreen *theOffscreen);
  17.